home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / stonegate_detect.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  105 lines

  1.  
  2. #
  3. # This script was written by Holger Heimann <hh@it-sec.de>
  4. #
  5. # See the Nessus Scripts License for details
  6. #
  7.  
  8. if(description)
  9. {
  10.  script_id(11762);
  11. #script_cve_id("CVE-MAP-NOMATCH");
  12.  script_version ("$Revision: 1.2 $");
  13.  
  14.  name["english"] = "StoneGate client authentication detection";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "
  19. A StoneGate firewall login is displayed. 
  20.  
  21. If you see this from the internet or an not administrative
  22. internal network it is probably wrong.
  23.  
  24. Solution : Restrict incoming traffic to this port
  25. Risk factor : Medium";
  26.  
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Check for StoneGate firewall client authentication prompt";
  31.  script_summary(english:summary["english"]);
  32.  
  33.  script_category(ACT_GATHER_INFO);
  34.  
  35.  script_copyright(english:"This script is Copyright (C) 2003 it.sec/Holger Heimann");
  36.  
  37.  family["english"] = "Firewalls";
  38.  
  39.  script_family(english:family["english"]);
  40.  script_dependencie("find_service.nes");
  41.  script_require_ports("Services/SG_ClientAuth", 2543);
  42.  exit(0);
  43. }
  44.  
  45.  
  46.  
  47. function test_stonegate(port)
  48. {
  49.  soc = open_sock_tcp(port);
  50.  
  51.  if(soc)
  52.  {
  53.   r = recv(socket:soc, length:2048);
  54.   close(soc);
  55.  
  56.   match = egrep(pattern:"(StoneGate firewall|SG login:)", string : r); 
  57.  
  58.   if(match)
  59.   {
  60.     return(r);
  61.   }
  62.   else    
  63.       return(0);
  64.  }
  65. }
  66.  
  67.  
  68. ## Heres the real dialog:
  69. #
  70. #     telnet www.xxxxxx.de 2543
  71. #    Trying xxx.xxx.xxx.xxx ...
  72. #    Connected to www.xxxxs.de.
  73. #    Escape character is '^]'.
  74. #    StoneGate firewall (xx.xx.xx.xx) 
  75. #    SG login: 
  76.  
  77.  
  78. port = get_kb_item("Services/SG_ClientAuth");
  79. if(!port)port = 2543;
  80. if(!get_port_state(port))exit(0);
  81.  
  82.  
  83. r = test_stonegate(port:port);
  84.  
  85. if (r != 0)
  86. {
  87.     data = "
  88. A StoneGate firewall client authentication  login is displayed.
  89.  
  90. Here is the banner :
  91.  
  92. " + r + "
  93.  
  94.  
  95. If you see this from the internet or an not administrative
  96. internal network it is probably wrong.
  97.  
  98. Solution : Restrict incoming traffic to this port.
  99.  
  100. Risk factor : Medium";
  101.  
  102.     security_warning(port:port, data:data);
  103.     exit(0);
  104. }
  105.